/* ===================================
         header appear css
====================================== */
header .navbar-brand .logo-simple{
    display: block;
}
header .navbar-brand .logo-fixed{
    display: none;
}
header .main-navigation nav .navbar-nav .nav-link{
    display: inline-block;
    /*margin-right: 25px;*/
    min-width: calc(100%/8);
    text-align: center;
}
header .main-navigation nav .navbar-nav .nav-link{
    padding-top: 0;
    padding-bottom: 0;
    font-family: Oswald, sans-serif;
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    transition: .5s ease;
}
header .main-navigation nav .navbar-nav .nav-link:hover{
	color:  #DA0000;
}
header .inner-header{
	padding: 30px 15px;
}
header .inner-header.header-appear{
	padding: 10px 15px;
	width: 100%;
}
header  .simple-navbar{
	width: 55%;
}
.header-appear{
    position: fixed;
    left: 0;
    right: 0;
    top:0;
    z-index: 1111;
    background-color: #FFFFFF;
    /*background:linear-gradient(30deg, rgba(53, 13, 130, 0.9) 0%, rgba(128, 33, 181, 0.9) 100%);*/
    -webkit-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}
.header-appear .simple-navbar{
	width: 55%;
}
/*.header-appear a{
	color: #fff;
}*/

.header-appear .navbar-brand .logo-simple{
    display: none;
}
.header-appear .navbar-brand .logo-fixed{
    display: block;
}
.header-appear .main-navigation{
    padding-top: 15px;
    padding-bottom: 15px;
}
.header-appear .main-navigation nav .navbar-nav .nav-link .nav-link {
    /*color: #202020;*/
}
.header-appear .main-navigation .simple-navbar{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-appear .fixed-nav-links{
    display: block;
}
.header-appear .fixed-nav-links{
    display: inline-block;
    transform: translateY(-5px);
    margin-left: 25px;
}
.header-appear .sidemenu_btn{
    top:25px;
    margin-top: 4px;
}
.header-appear .sidemenu_btn span{
    /*background-color: #202020;*/
}
@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* ===================================
    Side Menu
====================================== */
.side-menu .bg-overlay{
    /*background: rgba(247, 28, 82, 0.9);*/
    background:linear-gradient(30deg, rgba(53, 13, 130, 0.9) 0%, rgba(128, 33, 181, 0.9) 100%);
}
.side-menu {
    width: 100%;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    /*background: rgba(247, 28, 82, 0.6);*/
    background-image: url("/static/index/zm001/images/menu.jpg");
    background-size: cover;
    background-position: center;
    z-index: 9999;
    height: 100%;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
    -webkit-transition:transform .5s ease;
    overflow: hidden;
}
.side-menu.left {
    left: 0; 
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.side-menu-opacity{
    opacity:0;
}
.side-menu.before-side {
    width: 280px;
}
.side-menu.side-menu-active,
.side-menu.before-side{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.pul-menu .side-menu.side-menu-active {
    visibility: visible; opacity: 1;
}
.side-menu .navbar-brand {
    padding: 0 0 3.5rem 0;
    width: 100%;
    display: block;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}
.side-menu .navbar-brand img{
	margin: 0 auto;
}

/*Side overlay*/
#close_side_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #202020;
    -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    display: none;
    z-index: 1031;
    opacity: 0.4;
}

/*side clode btn*/
 .side-menu .btn-close {
    height: 33px;
    width: 33px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 42px;
    right: 49px;
    cursor: pointer;
}
/*.header-appear ~ .side-menu .btn-close {*/
/*    top:50px;*/
/*}*/
.side-menu.before-side .btn-close{
    display: none;
}
.side-menu .btn-close::before, .side-menu .btn-close::after {
    position: absolute;
    left: 16px;
    content: ' ';
    height: 24px;
    width: 2px;
    background: #fff;
    top: 5px;
}
.side-menu .btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.side-menu .btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*side open btn*/

.sidemenu_btn {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 36px;
    padding: 6px;
    display: inline-block;
}
.sidemenu_btn span {
    height: 2px;
    width: 100%;
    background: #555555;
    display: block;
    margin: auto;
    transition: .5s ease;
}
.sidemenu_btn:hover span{
    /*background: #fa2851;*/
}
.sidemenu_btn:hover span:first-child,.sidemenu_btn:hover span:last-child{
    width: 70%;
}

.sidemenu_btn span:nth-child(2) {
    margin: 4px 0;
}

.side-menu .inner-wrapper {
    padding: 10% 2%;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /*align-items: center;*/
    text-align: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.side-menu .inner-wrapper .container{
	width: 100%;
}
.pul-menu.pushwrap .side-menu .inner-wrapper{
    padding: 3.5rem 2.5rem;
}
.side-menu .side-nav {
    margin-bottom: 30px;
    display: block;
}
.side-nav .navbar-nav .nav-link{
    display: block;
    margin: 3px 0;
    padding: 0 !important;
    opacity: 0;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;

    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}
.side-nav .navbar-nav .nav-link:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
}
.side-nav .navbar-nav .nav-link:nth-child(2){
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}
.side-nav .navbar-nav .nav-link:nth-child(3) {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}
.side-nav .navbar-nav .nav-link:nth-child(4) {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}
.side-nav .navbar-nav .nav-link:nth-child(5) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}
.side-nav .navbar-nav .nav-link:nth-child(6) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
}
.side-nav .navbar-nav .nav-link:nth-child(7) {
    -webkit-transition-delay: .7s;
    -o-transition-delay: .7s;
    transition-delay: .7s;
}
.side-nav .navbar-nav .nav-link:nth-child(8) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}
.side-nav .navbar-nav .nav-link:nth-child(9) {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s;
}
.side-menu.side-menu-active .side-nav .navbar-nav .nav-link {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.side-nav .navbar-nav .nav-link {
    display: inline-table;
    color: #fff;
    padding: 2px 0 3px 0 !important;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    position: relative;
    border-radius: 0;
    font-family: Oswald, sans-serif;
}
.side-nav .navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    background: #fff;
    display: inline-block;
    width: 0;
    height: 3px;
    bottom: 0; left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
    width: 100%;
}
.side-nav .navbar-nav .nav-link.active {
    background: transparent;
}
.side-menu-inner-content .menu_bar{
	width: 70%;
	border-right: solid 1px rgba(255, 255, 255, 0.5);
	color: #fff;
	padding: 3% 3% 0 1%;
}
.side-menu-inner-content .menu_link{
	width: 28%;
	color: #fff;
	padding: 3% 0 0 0;
}
.side-menu-inner-content .menu_link p{
	font-size: 16px;
	margin-bottom: 10px;
}
.side-menu-inner-content .menu_bar ul h4{
	font-size: 18px;
	margin-bottom: 20px;
}
.side-menu-inner-content .menu_bar ul li{
	font-size: 15px;
	margin-bottom: 10px;
	transition: all 1s cubic-bezier(0, 0, 0.2, 1);
}
.side-menu-inner-content .menu_bar ul li a{
	transition: all 0.5s ease;
	color: #fff;
}
.side-menu-inner-content .menu_bar ul li a:hover{
	color: #DA0000;
}
.side-menu p{
    margin-bottom: 0;
}
.menu-company-details{
    margin-bottom: 25px;
    margin-top: -15px;
}
.menu-company-details span{
    display: block;
    color: #FFFFFF;
    font-size:16px;
    font-family: Oswald, sans-serif;
    font-weight: 300;
    margin-bottom: 5px;
}
.social-icons-simple{
    margin-bottom: 0;
    margin-left: -10px;
}

.social-icons-simple li{
    display: inline-block;
    padding-left: 8px;
}
.social-icons-simple li:first-child{
    padding-left: 0;
}
.social-icons-simple li a {
    display: block;
    font-size: 16px;
    height: 40px;
    line-height: 42px;
    border: 1px solid transparent;
    text-align: center;
    width: 40px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
}
.social-icons-simple li a:hover{
    background-color:#FFFFFF;
}

.social-icons-simple li.animated-wrap a:hover{
    background-color: transparent;
    color: #ffffff;
}
@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* ===================================
    menu-line
====================================== */
.navbar{
	position: relative;
	width: 100%;
}
.menu-line {
    position: absolute;
    bottom: -20px;
    left: 0;
    display: block;
    text-align: center;
    width: calc(100%/7);
    height: 0px;
    border:1px solid #DA0000;
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
    -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
    transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
}

.nav-icon .navbar-nav .nav-link:nth-child(1).active ~ .menu-line{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(2).active ~ .menu-line{
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(3).active ~ .menu-line{
    -webkit-transform: translate3d(200%, 0, 0);
    transform: translate3d(200%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(4).active ~ .menu-line{
    -webkit-transform: translate3d(300%, 0, 0);
    transform: translate3d(300%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(5).active ~ .menu-line{
    -webkit-transform: translate3d(400%, 0, 0);
    transform: translate3d(400%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(6).active ~ .menu-line{
    -webkit-transform: translate3d(500%, 0, 0);
    transform: translate3d(500%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(7).active ~ .menu-line{
    -webkit-transform: translate3d(600%, 0, 0);
    transform: translate3d(600%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(8).active ~ .menu-line{
    -webkit-transform: translate3d(700%, 0, 0);
    transform: translate3d(700%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(9).active ~ .menu-line{
    -webkit-transform: translate3d(800%, 0, 0);
    transform: translate3d(800%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(1):hover ~ .menu-line{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(2):hover ~ .menu-line{
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(3):hover ~ .menu-line{
    -webkit-transform: translate3d(200%, 0, 0);
    transform: translate3d(200%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(4):hover ~ .menu-line{
    -webkit-transform: translate3d(300%, 0, 0);
    transform: translate3d(300%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(5):hover ~ .menu-line{
    -webkit-transform: translate3d(400%, 0, 0);
    transform: translate3d(400%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(6):hover ~ .menu-line{
    -webkit-transform: translate3d(500%, 0, 0);
    transform: translate3d(500%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(7):hover ~ .menu-line{
    -webkit-transform: translate3d(600%, 0, 0);
    transform: translate3d(600%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(8):hover ~ .menu-line{
    -webkit-transform: translate3d(700%, 0, 0);
    transform: translate3d(700%, 0, 0);
}

.nav-icon .navbar-nav .nav-link:nth-child(9):hover ~ .menu-line{
    -webkit-transform: translate3d(800%, 0, 0);
    transform: translate3d(800%, 0, 0);
}

/*search*/
header .inner-header.header-appear .language{
	padding-top: 4px;
}
.language a {
    display: block;
    width: 50px;
    height: 25px;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
    line-height: 25px;
    font-size: 17px;
}

.language span{
	display: block;
	width: 0px;
	height: 15px;
	border:1px solid #A6A6A6;
	margin-top: 7px;
}

.icon-search {
    background: url(/static/index/zm001/images/search.png) no-repeat 15px 6px;
    float: left;
    position: relative;
}

.icon-search:hover {
    background-position: 0 0
}

.language .show.icon-search {
    border-color: #fff
}

.header-search {
    position: absolute;
    z-index: 999;
    top: -5px;
    right: 0;
    width: 0;
    height: 35px;
    background: #fff;
    overflow: hidden;
    -webkit-transition: all .4s;
    transition: all .4s;
    border-top: 1px solid #384395;
    border-bottom: 1px solid #384395;
}

.show .header-search {
    width: 200px
}

.hs-input {
    width: 135px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    float: left
}

.hs-submit {
    width: 50px;
    height: 35px;
    background: url(/static/index/zm001/images/search.png) no-repeat 15px 10px;
    float: right;
    cursor: pointer
}

/*首页*/
/*banner*/
.banner{
	position: relative;
	text-align: center;
}
.banner.mb{
    display: none;
}
.banner .swiper-container .swiper-pagination {
   bottom: 25px;
   width: 100%;
}

.banner .swiper-container .swiper-pagination-bullet {
    opacity: 1;
    position: relative;
    width: 50px;
    height: 3px;
    border-radius: 0;
    margin: 0 4px;
    background-color: rgba(0,0,0,0.5);
    transition: background-color .3s ease;
}

.banner .swiper-container .swiper-pagination-bullet::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: 0 0;
}

.banner .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    animation: sliderPagination 3s linear forwards
}

.banner .swiper-container .swiper-pagination-bullet:hover {
    background-color: #fff;
}

@keyframes sliderPagination {
 	100% {
		transform: scaleX(1);
        opacity: 1;
    }
}
body .swiper-button-next,body  .swiper-button-prev{
    width: 60px;
    height: 60px;
}
body .swiper-button-next::after, body .swiper-button-prev::after{
    content: '';
}
body .swiper-button-prev{
    background: url(/static/index/zm001/images/01-1.png) no-repeat center;
}
body .swiper-button-next{
    background: url(/static/index/zm001/images/01-2.png) no-repeat center;
}
body .swiper-button-prev:hover{
    background: url(/static/index/zm001/images/02-1.png) no-repeat center;
}
body .swiper-button-next:hover{
    background: url(/static/index/zm001/images/02-2.png) no-repeat center;
}
/*product*/
.global_title{
	padding: 50px 0 40px;
	font-size: 40px;
	text-align: center;
	text-transform: uppercase;
}
.global_title h3{
	font-size: 36px;
}
.global_title p{
	font-size: 16px;
}
.product_index .inner{
	width: 24.2%;
	margin-right: 1%;
	text-align: center;
    transition: all 0.5s ease;
    cursor: pointer;
}
.product_index .inner:last-child{
	margin-right: 0px;
}
.product_index .inner .text{
	padding: 7% 5%;
	border:1px solid #E9E9E9;
	border-top: none;
}
.product_index .text .diandian{
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
}
.product_index .inner .text h3{
	font-size: 24px;
	margin-bottom: 10px;
	transition: all 0.5s ease;
}
.product_index .inner .text .content{
	line-height: 24px;
}
.product_index .inner:hover h3{
	color: #da0000;
}
.product_index .inner:hover img{
	transform: scale(1.1);
}
.product_index .inner:hover{
    -webkit-box-shadow: 10px 7px 6px -6px rgba(0, 0, 0, 0.35);
    box-shadow: 10px 7px 6px -6px rgba(0, 0, 0, 0.35);
}
/*service*/
.service_index{
	background: #B8BFC5 url(../images/service.jpg)no-repeat center;
    background-size: cover;
	margin-top: 70px;
    padding-bottom: 50px;
}
.service_index .ser_box{
	width: 32.5%;
	padding: 75px 0;
	position: relative;
	margin-bottom: 1.2%;
}
.service_index .ser_box .ser_bac{
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	z-index: 0;
}
.service_index .ser_box .img{
	font-size: 24px;
	position: relative;
	width: 100%;
	z-index: 10;
	text-align: center;
}
.service_index .ser_box .img img{
	margin:0 auto 10px auto;
    height: 75px;
}
.service_index .ser_box .cover{
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	position: absolute;
	overflow: hidden;
	z-index: 20;
	opacity: 0;
}
.service_index .ser_box .cover .title{
	height: 20%;
	background: #DA0000;
	color: #fff;
	font-size: 24px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.service_index .ser_box .cover .list{
	height: 80%;
	padding: 10% 7% 0 7%;
	font-size: 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.service_index .ser_box .cover .list ul li{
	width: 48%;
	margin-bottom: 3%;
}
.service_index .ser_box .cover .list ul li a:before{
	content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	left: 0px;
	bottom: -6px;
	transition: all 0.3s ease;
	border-top:1px solid #DA0000;
}
.service_index .ser_box .cover .list ul li a{
	color: #fff;
	position: relative;
}
.service_index .ser_box .cover .list ul li a:hover:before{
	width: 100%;
}
.service_index .ser_box:hover .cover{
	opacity: 1;
}

/*company*/
.diandian{
	margin-top: 10px;
}
.diandian b{
	width: 6px;
	height: 6px;
	display: block;
	margin-right: 2px;
}
.diandian b:first-child{
	background: #DA0000;
}
.diandian b:nth-child(2){
	background: #E22C3A;
}
.diandian b:last-child{
	background: #E97C82;
}
.company_index{
	background: url(/static/index/zm001/images/company.jpg) no-repeat center;
    background-size: cover;
}
.company_index .rob .intro{
	width: 46%;
	padding-top: 5%;
}
.company_index .intro .global_title{
	text-align: left;
}
.company_index .rob .intro .intro_content{
	font-size: 15px;
}
.company_index .rob .intro .intro_num{
	margin-top: 6%;
}
.company_index .rob .intro .intro_num .num .n1,
.company_index .rob .intro .intro_num .num i{
	font-size: 46px;
	color: #DA0000;
	font-family: Impact;
	text-align: center;
	padding-top: 0px;
}
.company_index .rob .intro .intro_num .num sub{
	font-size: 16px;
}
.company_index .rob .intro .intro_num .num p{
	text-align: center;
	font-size: 16px;
}

.company_index .intro_pro{
	width: 50%;
	position: relative;
	padding: 4% 0;
}
.company_index .bigimg{
	position: relative;
	padding: 15% 0;
	display: inline-block;
	width: 65%;
}
.company_index .bigimg:before{
	content: '';
	display: block;
	position: absolute;
	width: 125%;
	height: 94%;
	left: -4.8%;
	top: 2.3%;
	background: url(/static/index/zm001/images/ser.png) no-repeat;
	background-position: left;
	background-size: auto 100%;
}
.company_index .bigimg img{
	width: 100%;
	position: relative;
	z-index: 22;
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.company_index .smallimg{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
.company_index .smallimg .u div[class*="s"]{
	position: absolute;
	display: flex;
	align-items: center;
	text-transform: uppercase;
}
.company_index .smallimg .u div[class*="s"] .img{
	position: relative;
}
.company_index .smallimg .u div[class*="s"] .img:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: -6px;
	top: -6px;
	border-radius: 50%;
	border:6px solid #DA0000;
	transition: all .5s ease;
	transform: scale(1);
	z-index: 30;
	opacity: 0;
}
.company_index .smallimg .u div[class*="s"] .img img{
	transition: all 0.5s ease;
	transform: scale(1);
}
.company_index .smallimg .u div[class*="s"] .img a{
	position: relative;
	z-index: 30;
}
.company_index .smallimg .u div[class*="s"]:hover .img:before{
	transform: scale(.9);
	opacity: 1;
}
.company_index .smallimg .u div[class*="s"]:hover .img img{
	transform: scale(.9);
}
.company_index .smallimg .u div[class*="s"] .text{
	margin-left: 20px;
}
.company_index .smallimg .u div[class*="s"] .text .m p:first-child{
	font-size: 18px;
	transition: all .5s ease;
}
.company_index .smallimg .u div[class*="s"] .text .m p:last-child{
	font-size: 14px;
	word-wrap: break-word;
	transition: all .5s ease;
}
.company_index .smallimg .u div[class*="s"]:hover p{
	color: #DA0000;
}
.company_index .smallimg .u .s1{
	right: -20%;
	top: 1%;
}
.company_index .smallimg .u .s2{
	right: -47%;
	top: 18%;
}
.company_index .smallimg .u .s3{
	right: -54%;
	top: 41%;
}
.company_index .smallimg .u .s3 .text .m p:last-child{
	max-width: 80px;
}
.company_index .smallimg .u .s4{
	right: -54%;
	bottom: 21%;
}
.company_index .smallimg .u .s5{
	right: -16%;
	bottom: 2%;
}


/*partner*/
.partner{
	padding: 70px 0;
	background: #fff url(../images/par.jpg) no-repeat center;
	background-size: cover;
}
.partner .par_text{
	width: 22%;
}
.partner .par_text .global_title{
	text-align: left;
}
.partner .par_text .text{
	font-size: 16px;
	left: 24px;
}
.btn {
	-webkit-appearance: initial; 
	overflow: hidden;
	position: -webkit-sticky;
	position: sticky; 
	z-index: 2; 
	display:inline-block; 
	font-size: 17px; 
	border:2px solid transparent; 
	letter-spacing: .5px; 
	line-height: inherit; 
	border-radius: 0; 
	text-transform:capitalize; 
	width: auto;font-family: 'Oswald', sans-serif; 
	font-weight: 500; 
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease !important;
	transition: all .5s ease !important;
}
.partner .par_text .btn{
	margin-top: 50px;
}
.pink-btn{
    border: solid 1px #DA0000;
    /*color: #555555 !important;*/
    font-weight: 400;
    padding: 8px 45px;
    /*background-color: #DA0000;*/
    font-size: 14px;
    font-family: Oswald, sans-serif;
    border-radius: 0.5em;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .8s ease;
    text-decoration: none;
    cursor: pointer;
}
.pink-btn:hover{
    border:solid 1px #DA0000;
    color: #fff;
}
.pink-btn span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: #DA0000;
    transform: translateY(150%);
    border-radius: 50%;
    transition: 0.5s;
    z-index: -1;
}
.pink-btn:hover span{
    transform: translateY(0) scale(3);
}

.pink-btn span:nth-child(1) {
    left: calc((1 - 1) * 25%);
    transition-delay: calc((1 - 1) * 0.1s);
}

.pink-btn span:nth-child(2){
    left: calc((2 - 1) * 25%);
    transition-delay: calc((2 - 1) * 0.1s);
}

.pink-btn span:nth-child(3){
    left: calc((3 - 1) * 25%);
    transition-delay: calc((3 - 1) * 0.1s);
}

.pink-btn span:nth-child(4) {
    left: calc((4 - 1) * 25%);
    transition-delay: calc((4 - 1) * 0.1s);
}
.pink-btn span:nth-child(5){
    left: calc((5 - 1) * 25%);
    transition-delay: calc((5 - 1) * 0.1s);
}


.link_logo{
	width: 65%;
	padding-top: 120px;
}
.link_logo ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin:-90px 0;
}
.link_logo ul li{
	width: 15.3%;
	height: 15.3%;
	max-width: 140px;
	max-height: 140px;
	border:1px solid #2283DA;
	border-radius: 5px;
	transform: rotateZ(45deg);
	margin: 4.3%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s linear;
	box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1),-8px -8px 20px 0 #fff;
}
.link_logo ul.ul1 li{
	margin-top: 0px;
}
.link_logo ul li img{
	width: 100%;
	height: 100%;
	transform: rotateZ(-45deg);
}
.link_logo ul li:hover{
	box-shadow: 8px 8px 20px 0 rgba(55,99,170,.2),-8px -8px 20px 0 #fff;
}

.main_par{
	padding-top: 3%;
	font-size: 24px;
	text-align: right;
}
.main_par h3{
	font-size: 36px;
	line-height: 40px;
	color: #2283DA;
	text-transform: uppercase;
}
.main_par .line{
	margin-top: 90%;
	width: 2px;
	height: 210px;
	background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(26,105,196,1));
	float: right;
	position: relative;
}
.main_par .line:before{
	content: '';
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #2283DA;
	left: -6px;
	top: -7px;
}
@keyframes roY{
	0%{	
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
	50%{
		transform: translate3d(0,1500%,0);
		-webkit-transform: translate3d(0,1500%,0);
	}
	100%{	
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}
.main_par .line:before{
	animation: 5s roY linear infinite normal;
	-webkit-animation: 5s roY linear infinite normal;
}

/*质量体系*/
.ContentsMenu {text-align: center;}
.ContentsMenu ul {display: flex;flex-wrap: wrap;}
.ContentsMenu ul li {width: calc(100% / 3);width: 33.33333333333%; background-color: #000;display: flex;position: relative;}
.ContentsMenu ul li a{height: 100%;width: 100%;padding:50px 25px;color: #fff;display: flex;position: relative;}
.ContentsMenu .ContentsMenuCompany a { background:#000 url("../images/p1.jpg") no-repeat center;background-size: cover;}
.ContentsMenu .ContentsMenuRd a {background:#000 url("../images/p2.jpg") no-repeat center;background-size: cover;}
.ContentsMenu .ContentsMenuRecruit a {background:#000 url("../images/p3.jpg") no-repeat center;background-size: cover;}
.ContentsMenu ul li .Box {width: 100%;display: flex;flex-direction: column;}
.ContentsMenu h2.TopH2_02 {font-size: 2.3rem;font-weight: bold;margin-bottom: 30px;}
.ContentsMenu p {margin-bottom: 60px;}
.ContentsMenu ul li a:hover::after {content: ''; position: absolute;top: 0;left: 0;height: 100%;width: 100%;background-color:rgba(0,0,0,0.20);}
.ContentsMenu .btn{display: inline-block;width: 50%;margin:0 auto;}
.ContentsMenu .pink-btn{color: #fff;border-color: #fff;}
.ContentsMenu .pink-btn:hover{border-color: #da0000;}

/*footer*/
.footer{
	padding: 70px 0 30px 0;
	background: #F1F1F1;
}
.footer .footer_link{
	width: 35%;
}
.footer .footer_link .footer_link_p{
	font-size: 17px;
	line-height: 26px;
	margin:30px 0;
}
.footer .footer_link .footer_link_p p{
	margin-bottom: 5px;
}
.footer .footer_link .wx{
	display: inline-block;
}
.footer .footer_link .wx img{
	width: 106px;
	height: 106px;
	margin-bottom: 10px;
}
.footer .footer_nav{
	width: 60%;
}
.footer .footer_nav ul h4{
	font-size: 18px;
	margin-bottom: 20px;
}
.footer .footer_nav ul li{
	font-size: 15px;
	margin-bottom: 10px;
	
}
.footer .footer_nav ul li a{
	transition: all 0.5s ease;
}
.footer .footer_nav ul li a:hover{
	color: #DA0000;
}
.bottom{
	background: #F1F1F1;
}
.bottom .container{
	border-top:2px solid #ccc;
	padding: 15px;
}
.bottom .foot-l div{
	display: inline-block;
	margin-right: 20px;
}
.bottom .foot-l div img{
	margin-right: 5px;
}
.bottom .foot-l div a:hover,
.bottom .foot-r a:hover{
	color: #DA0000;
}


/*内页开始*/
/*内页banner*/
.in_banner{
	width: 100%;
	height: 350px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: right;
	padding-top: 150px;
}
.in_banner h3{
	font-size: 40px;
}
.in_banner p{
	font-size: 16px;
}

/*公共标题*/
.com_bar{
	/*border-bottom: 1px solid #DCDCDC;*/
	box-shadow: 0 10px 10px -10px #ccc;
}
.com_bar .roc div a.active{
	border-bottom: 2px solid #DA0000;
}
.com_bar .roc div{
	padding: 20px 20px;
	margin: 0 20px;
	font-size: 16px;
	border-bottom: 2px solid #fff;
}
.com_bar .roc div.active,
.com_bar .roc div:hover{
	border-bottom: 2px solid #DA0000;
}
/*公司简介*/
.company_inner_box{
	background:  url(/static/index/zm001/images/about.png) no-repeat right bottom;
	background-size: 60%;
	padding-bottom: 70px;
}
.company_inner .company_inner_img{
	width: 47%;
	background: #DA0000;
	color: #fff;
}
.company_inner .company_inner_img .rob{
	height: 100%;
}
.company_inner_img_logo,
.company_inner_img_fac{
	width: 50%;
}
.company_inner_img_logo{
	display: flex;
	align-items: center;
	padding-left: 5%;
	font-size: 18px;
}
.company_inner_img_logo p{
	margin-top: 10px;
}
.com_inner .company_inner_content{
	width: 50%;
	font-size: 16px;
}
.com_inner .intro_num{
	width: 90%;
	margin: 0 auto;
}
.com_inner .intro_num{
	padding: 3% 0 0;
}
.com_inner .intro_num .num .n1,
.com_inner .intro_num .num i{
	font-size: 48px;
	color: #DA0000;
	font-family: Impact;
	text-align: center;
	padding-top: 3px;
}
.com_inner .intro_num .num sub{
	font-size: 16px;
}
.com_inner .intro_num .num p{
	text-align: center;
	font-size: 16px;
}

/*公司历程*/
.com_inner .history{
	background: url(/static/index/zm001/images/his.jpg)no-repeat center;
	color: #fff;
	padding-bottom: 19%;
    background-size: cover;
}
.com_inner .history .container{
	overflow: hidden;
}
.com_inner .history .global_title{
	color: #fff;
}
.com_inner .history #his1{
	font-size: 22px;
}
.com_inner .history #his1{
	width: 70%;
	margin:0 auto;
	overflow: hidden;
	text-align: center;
	position: relative;
}
.com_inner .history #his1 .year{
	font-size: 180px;
	font-weight: bold;
	color: rgba(255,255,255,.1);
	position: absolute;
	left: 50%;
	top: 47%;
	z-index: 1;
	line-height: 180px;
	transform: translate(-50%, -50%);
}
.com_inner .history #his1 .swiper-slide{
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.com_inner .history #his1 .content{
	padding: 2% 0 3%;
}
.com_inner .history #his2{
	width: 50%;
	margin:0 auto;
	text-align: center;
	font-size: 24px;
	height: 60px;
	overflow: hidden;
	line-height: 60px;
}
.com_inner .history #his2 .swiper-wrapper{
	
}
.com_inner .history #his2 p{
	transition: all 0.5s ease;
}
.com_inner .history #his2 .swiper-slide{
	cursor: pointer;
}
.com_inner .history #his2 .swiper-slide-thumb-active p{
	font-size: 36px;
}
.com_inner .history .x-line{
	width: 100%;
	height: 41px;
	background: url(/static/index/zm001/images/xline.png) no-repeat center;
}
.com_inner .history #his2 span{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 10px;
	height: 10px;
	background: #fff;
}


/*企业理念*/
.coop_box{
	width: 32%;
}
.coop_box .coop_dt{
	padding: 9% 8%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.coop_box .coop_dt h3{
	font-size: 24px;
	margin:4% 0 1%;
}
.coop_box .coop_dt .content{
	font-size: 16px;
}
.coop_box .coop_dt .coop_box_img img{
	height: auto;
}
.coop_box .coop_dt .coop_box_img p{
	font-size: 72px;
	font-weight: bold;
	color: #EDEDED;
	font-family: Impact;
	line-height: 72px;
}
.coop_box .coop_en{
	font-size: 24px;
	color: rgba(255,255,255,.8);
	padding: 2% 8%;
	background: #DA0000;
}

/*社会责任*/
.pro_inner_box{
	padding: 60px 15px;
}
.pro_inner_left{
	width: 77%;
}
.pro_inner_box .pro_inner_content .pane{
	display: none;
}
.pro_inner_box .pro_inner_tab ul li{
	width: 24.5%;
	font-size: 18px;
	text-align: center;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	padding-bottom: 15px;
}
.pro_inner_box .pro_inner_tab ul li span{
	display: block;
	padding: 7.5% 0;
	background: #EEEFEF;
	position: relative;
}
.pro_inner_box .pro_inner_tab ul li.hit span{
	background: #DA0000;
	color: #fff;
}
.pro_inner_box .pro_inner_tab ul li.hit span:after{
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px calc((20vw - 20px) / 2) 0 calc((20vw - 20px) / 2);
	border-color: #DA0000 transparent transparent transparent;
	z-index: 1;
}
.pro_inner_box .pro_inner_content .pro_inner_content_title {
	margin:50px 0;
}
.pro_inner_box .pro_inner_content .pro_inner_content_title .img{
	width: 50%;
}
.pro_inner_box .pro_inner_content .pro_inner_content_title .title{
	width: 46%;
	text-align: left;
}
.pro_inner_box .pro_inner_content .pro_inner_content_title .title h3{
	font-size: 28px;
}
.pro_inner_box .pro_inner_content .pro_inner_content_title .title .tags{
	font-size: 15px;
	line-height: 26px;
}
.pro_inner_box .pro_inner_content .diandian{
	margin: 15px 0;
}
.pro_inner_box .pro_inner_content_param table{
	border-collapse: collapse;
	table-layout:fixed;
}
.pro_inner_box .pro_inner_content_param table td{
	border: 1px solid #E0E0E0;
	/*height: 70px;*/
}
.pro_inner_box .pro_inner_content_param table .td1{
	width: 30%;
	background: #EEF0F0;
	padding-left: 10%;
	font-weight: bold;
}
.pro_inner_box .pro_inner_content_param table .td2{
	width: 70%;
	padding: 2% 5%;
}
.pro_inner_box .pro_inner_content_index{
	margin-top: 50px;
}
/*右侧下拉菜单*/
.pro_inner_box .pro_inner_right{
	width: 20%;
}
.account-l .list-title{
	width: 100%;
	font-size: 26px;
	padding: 5% 0;
	background: #DA0000;
	color: #fff;
	text-align: center;
	font-weight: bold;
	border-left: solid 1px #DA0000;
    border-right: solid 1px #DA0000;
    border-bottom: 1px solid #E4E4E4;
}
.accordion {
    width: 100%;
    background: #EEF0F0;
}
.accordion .link {
    cursor: pointer;
    display: block;
    padding: 15px 15px 15px 15%;
    color: #4D4D4D;
    font-size: 18px;
    border-bottom: 1px solid #E4E4E4;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-left: solid 1px #E4E4E4;
    border-right: solid 1px #E4E4E4;
}
.accordion .link:hover{
    background: #da0000;
    color: #fff;
}
.accordion li:last-child .link {
    border-bottom: 0;
}
.accordion .link .img{
	position: absolute;
	width: 34px;
	height: 34px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	right: 10%;
	top: 21%;
	opacity: .5;
}
.accordion li{
    cursor: pointer;
}
.accordion li i.fa-chevron-down {
    position: absolute;
    top: 22px;
    left: 12px;
    font-size: 16px;
    font: lighter;
    color: #595959;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.accordion li.open .link {
    color: #fff;
    background: #DA0000;
    border-left: solid 1px #DA0000;
    border-right: solid 1px #DA0000;
}
.accordion li.open i {
    color: #fff;
}
.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
.accordion .submenu {
  display: none;
  background: #fff;
  font-size: 18px;
}
.accordion .submenu li{
	border-bottom: 1px solid #E4E4E4;
	border-left: 1px solid #DA0000;
}
.accordion .submenu li a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px 15px 15px 17%;
	font-size: 16px;
}
.accordion .submenu li a i.fa-chevron-down {
    position: absolute;
    top: 23px;
    left: 8%;
    font-size: 12px;
    font: lighter;
    color: #DA0000;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.accordion .submenu li a:hover,
.accordion .submenu li a.active{
	color: #DA0000;
}


/*研发能力*/
.research img{
	max-width: 100%;
}
.research .research_list .research_list_1{
	width: 25%;
}
.research .research_list_1{
	background: url(/static/index/zm001/images/res.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
    padding: 0 2%;
}
.research .research_list_1 h3{
	font-size: 30px;
	margin-top: 2%;
}
.research .research_list_1 span{
	display: block;
	width: 30px;
	height: 0px;
	border:1px solid #fff;
	margin:4% 0;
}
.research .research_list_1 .content{
	font-size: 16px;
}
.research  .research_zl{
    width: 73%;
    overflow: hidden;
    position: relative;
}
.research .research_info{
	margin-top: 20px;
    margin-bottom: 50px;
}
.research .research_info .research_info_box{
	width: 24%;
	text-align: left;
	background: #fff;
	padding: 2.5% 2%;
    background-size: cover;
}
.research .research_info .research_info_box .diandian{
	margin:5% 0;
    justify-content: left;
}
.research .research_info .research_info_box h3{
	font-size: 26px;
    margin:3% 0;
}
.research .research_info .research_info_box .content{
    font-size: 15px;
    line-height: 26px;
}


/*quality*/
.quality{
	padding-bottom: 60px;
}
.quality .quality_list .quality_box{
	width: 48%;
}
.quality .quality_list .quality_box h3{
	display: block;
	padding: 2% 0;
	text-align: center;
	font-size: 23px;
	line-height: 26px;
	background: #DA0000;
	color: #fff;
	margin-bottom: 2%;
	text-transform: uppercase;
}
.quality .quality_list .quality_box .content table{
	width: 100%;
	border-collapse: collapse;
}
.quality .quality_list .quality_box .content table td{
	border:1px solid #DDDDDD;
	text-align: center;
	height: 42px;
	font-family: '';
}


/*honor*/
.com_inner .honor{
	background: url(/static/index/zm001/images/honor.jpg) no-repeat center;
	background-size: cover;
	padding-bottom: 50px;
}
.com_inner .honor .global_title{
	color: #fff;
}
.com_inner .honor .content{
	/*background: #fff;*/
	padding: 4% 8%;
	position: relative;
	background: #fff;
}
.com_inner .honor .content .swiper{
	/*width: 80%;*/
	overflow: hidden;
}

/*society*/
.society_list{
	padding: 50px 0;
}
.society_list ul li{
	width: 32.65%;
	margin-right: 1%;
	margin-bottom: 1%;
}
.society_list ul li:nth-child(3n){
	margin-right: 0px;
}
.society_list ul li .img{
	position: relative;
}
.society_list ul li .img .h4{
	position: absolute;
	width: 100%;
	padding: 10px 5%;
	background: rgba(25,107,180,8);
	color: #fff;
	left: 0px;
	bottom: 0px;
	font-size: 16px;
	line-height: 26px;
	transition: all 0.5s ease;
}
.society_list ul li .img i{
	transform: rotate(-90deg);
	margin-right: 5px;
}
.society_list ul li .box{
	padding: 15px 5%;
	line-height: 25px;
}
.society_list ul li:hover .h4{
	background: rgba(201,35,38,.8);
}


/*详情页*/
.news_detail_box{
	padding: 50px 0;
}
.news_detail_box .news_detail_title{
	padding: 10px 0;
	border-bottom: 1px solid #DDDDDD;
}
.news_detail_box .news_detail_title .h3{
	font-size: 26px;
	text-align: center;
}
.news_detail_box .news_detail_title .b{
	margin:.6% 0;
}
.news_detail_box .news_detail{
	padding: 2%;
}
.news_detail_box .news_detail img{
    display: inline-block;
}

.news_detail_box .news_detail_title .b a{
	color: #555555;
	font-size: 18px;
	margin-right: 10px;
}
.news_detail_box .news_detail_title .b a.f-add{
	font-size: 22px;
}
.news_detail_box .news_detail_title .b a.f-dec{
	font-size: 14px;
	margin-right: 0px;
}
.news_detail_box .news_detail_title .b a:hover{
	color: #DA0000;
}

.newsPage {
  background: #f6f6f6;
}
.newsPage .left,.newsPage .right{
  width: 46%;
  padding: 25px 40px;
  box-sizing: border-box;
  overflow: hidden;
}
.newsPage .right{
  text-align: right;
  border-left:1px solid #ccc;
}
.newsPage .left{
  border-right:1px solid #ccc;
}
.newsPage .page-a{
  overflow: hidden;
}
.newsPage a{
  color: #000;
}
.newsPage .cent{
  width: 8%;
  height: 70px;
  line-height: 70px;
  color: #000;
  text-align: center;
}
.newsPage .cent i{
  font-size: 24px;
  transition: all 0.5s ease;
  line-height: 70px;
  color: #ccc;
}
.newsPage .cent:hover i{
  color: #DA0000;
}



/*news*/
.com_news_box{
	padding: 50px 0;
}
.com_news_list .hot_news .img,
.com_news_list .hot_news .box{
	width: 50%;
}
.com_news_list .hot_news{
	background: #F5F6F6;
}
.com_news_list .hot_news .time{
	padding: 5px 20px;
	border-radius: 20px;
	background: #DA0000;
	color: #fff;
	font-size: 16px;
}
.com_news_list .hot_news .time i{
	margin-right: 4px;
}
.com_news_list .hot_news img{
    max-height: 400px;
}
.com_news_list .hot_news h4{
	font-size: 22px;
	margin:3% 0 1%;
}
.com_news_list .hot_news .box{
	display: flex;
	padding: 0 4%;
	align-items: center;
}
.com_news_list .hot_news .box .content{
	font-size: 15px;
	line-height: 26px;
	color: #666666;
}
.com_news_list .hot_news .box .btn{
	margin-top: 4%;
}
.com_news_box .other_news ul li{
	position: relative;
	background: #F5F6F6;
	/*padding: 2% 3%;*/
	margin-top: 4%;
}
.com_news_box .other_news ul li span{
	position: absolute;
	padding: 5px 30px;
	background: #DA0000;
	color: #fff;
	font-size: 14px;
	left: 0px;
	top: -30px;
}
.com_news_box .other_news ul li span i{
	margin-right: 5px;
}
.com_news_box .other_news ul li .text{
	width: 70%;
	padding: 2% 0 2% 3%;
}
.com_news_box .other_news ul li h4{
	font-size: 20px;
	transition: all 0.5s ease;
}
.com_news_box .other_news ul li h4:hover{
	color: #DA0000;
}
.com_news_box .other_news ul li .content{
	font-size: 15px;
	line-height: 24px;
	color: #666666;
	margin-top: 1%;
}
.com_news_box .other_news ul li .img{
	width: 20%;
	max-height: 150px;
}


/*contact*/
.de_contact .contact_map{
	position: relative;
}
.de_contact .contact_map #dituContent{
	width: 100%;
	height: 580px;
}
.de_contact .contact_map .link{
	position: absolute;
	width: 35%;
	right: 3%;
	top: 20%;
	background: rgba(255,255,255,.9);
	font-size: 17px;
	line-height: 28px;
}
.de_contact .contact_map .link h4{
	font-size: 22px;
	color: #fff;
	padding: 8px 0;
	background: #DA0000;
	text-align: center;
}
.de_contact .contact_map .link div{
	padding: 5% 6% 5% 12%;
}
.de_contact .contact_map .link li{
	margin-bottom: 12px;
	position: relative;
	line-height: 27px;
}
.de_contact .contact_map .link li:before{
	content: '';
	width: 23px;
	height: 23px;
	position: absolute;
	left: -35px;
	top: 5px;
	background-size: contain;
}
.de_contact .contact_map .link li:nth-child(1):before{
	background:url(/static/index/zm001/images/c1.png) no-repeat center;
}
.de_contact .contact_map .link li:nth-child(2):before{
	background:url(/static/index/zm001/images/c2.png) no-repeat center;
}
.de_contact .contact_map .link li:nth-child(3):before{
	background:url(/static/index/zm001/images/c3.png) no-repeat center;
}
.de_contact .contact_map .link li:nth-child(4):before{
	background:url(/static/index/zm001/images/c4.png) no-repeat center;
}
.de_contact .contact_map .link li:nth-child(5):before{
	background:url(/static/index/zm001/images/c5.png) no-repeat center;
}


/*message*/
.com_inner .message{
	background: url(/static/index/zm001/images/mes.jpg) no-repeat center;
	margin-top: 50px;
	padding-bottom: 70px;
	background-size: cover;
}
.com_inner .message .global_title{
	color: #fff;
}
.contact-liuyan{
	background: #fff;
	padding: 3% 3%;
}
.contact-liuyan .form-right{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 50%;
}
.contact-liuyan .inputbox{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.contact-liuyan input[type=text]{
    width: 48.5%;
    line-height: 45px;
    border:1px solid #eee;
    padding-left: 15px;
    outline: none;
    background: #F1F1F1;
    font-size:14px;
    color:#333;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-bottom: 8px;
}
.contact-liuyan  input:focus{
    border:1px solid #da0000;
}
.contact-liuyan  input[type=text]::placeholder{
    font-size:14px;
    color:#999;
}
.contact-liuyan input[name=captcha]{
    width: 40%;
    margin-right: 15px;
}
.contact-liuyan .verify{
    height: 45px;
    width: 20%;
}
.contact-liuyan .verify img{
    height: 100%;
}
.contact-liuyan textarea{
    width:100%;
    height: 155px;
    border:1px solid #eee;
    background: #F1F1F1;
    padding:15px;
    outline: none;
    resize: none;
    font-size:14px;
    color:#333;
    margin-bottom: 8px;
    font-family: "Microsoft Yahei";
}
.contact-liuyan textarea::placeholder{
    font-size:14px;
    color:#999;
}
.contact-liuyan textarea:focus{
    border:1px solid #da0000;
}
.contact-liuyan .pink-btn{
	padding: 16px 145px;
	background: #2283DA;
	border:none;
	color: #fff;
}
/*.contact-liuyan .submit{
    display: block;
    width: 30%;
    line-height: 47px;
    text-align:center;
    color:#fff;
    height: 47px;
    font-size:20px;
    background: #da0000;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}*/
/*.contact-liuyan .inputbox .submit:hover{
    background: #51c0c3;
}*/


/*应用领域*/
.area_type{
	text-align: center;
	padding: 0 15px;
}
.area_type .area_type_c{
	background: rgba(255,255,255,.9);
}
.area_type .area_type_box{
	width: calc(100% / 6);
	border-left: 1px solid #ccc;
	padding: 2% 0;
}
.area_type .area_type_box a:hover p{
    color: #da0000;
    font-weight: bold;
}
.area_type .area_type_box.active a p{
    color: #da0000;
    font-weight: bold;
}
.area_type .area_type_box:first-child{
	border:none;
}
.area_inner{
	padding: 50px 0;
}
.area_type .area_type_box .img{
	width: 44px;
	height: 44px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin:0 auto 10px auto;
}
.com_inner .area_left{
	width: 77%;
}
.com_inner .area_left .content{
	padding: 2% 0 0 0;
}
.com_inner .area_left .content p,
.com_inner .area_left .content span{
    font-size: 16px !important;
}
.com_inner .area_left .content strong{
    color: #da0000;
    display: block;
}
.com_inner .area_left .content table{
    width: 80%;
    border-collapse: collapse;
    margin: 2% 0;
}
.com_inner .area_left .content table .firstRow{
    background: #da0000;
}
.com_inner .area_left .content table .firstRow td,
.com_inner .area_left .content table .firstRow p,
.com_inner .area_left .content table .firstRow span
{
    color: #fff !important;
}
.com_inner .area_left .content table td{
    border-color:#DDDDDD !important;
    padding: .8% 0 !important;
    border:1px solid ;
    text-align: center !important;
    font-size: 16px !important;
}
.com_inner .area_left .content table td p{
    text-align: center !important;
}
.com_inner .area_right{
	width: 20%;
}
.com_inner .area_left h3{
	font-size: 28px;
	font-weight: bold;
	border-bottom: 2px solid #EFF0F0;
	padding: 1.5% 0;
}


/*respon*/
.com_inner .respon .soc .soc_box{
	width: 49%;
	background: #F8F8F8;
}
.com_inner .respon .soc .soc_box .soc_text{
	width: 60%;
	display: flex;
	align-items: center;
	padding: 8% 5%;
}
.com_inner .respon .soc .soc_box .soc_img{
	width: 37%;
}
.com_inner .respon .soc .soc_box .soc_text h3{
	font-size: 24px;
	margin-bottom: 10px;
}
.com_inner .respon .soc .soc_box .soc_text .content{
	line-height: 30px;
	font-size: 16px;
}


/*link*/
.com_inner .links {
	margin-bottom: 40px;
}
.com_inner .links .link_list ul li{
	width: 19%;
	margin-right: 1%;
	margin-bottom: 1%;
	text-align: center;
	-webkit-box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1),-8px -8px 20px 0 #fff,inset 0 4px 20px 0 hsla(0,0%,100%,.5);
    box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1),-8px -8px 20px 0 #fff,inset 0 4px 20px 0 hsla(0,0%,100%,.5);
    height: 100px;
}
.com_inner .links .link_list ul li:nth-child(5n){
	margin-right: 0px;
}
.com_inner .links .link_list ul li img{
    transform: scale(.8);
}


/* ===================================
   Scroll Top
====================================== */

.scroll-top-arrow, .scroll-top-arrow:focus {
    font-size: 23px;
    line-height: 47px;
    color: #fff;
    background-color: #da0000;
    display: none;
    height: 45px;
    width: 45px;
    cursor: pointer;
    padding: 0;
    position: fixed;
    bottom: 40px;
    right: 20px;
    text-align: center;
    text-decoration: none;
    z-index: 80;
    border-radius: 50px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.scroll-top-arrow:hover {
    background-color: #2283DA; }
.scroll-top-arrow .fa-angle-double-up:before{
    position: relative;
    bottom: 3px;
}











<!--0.00017690658569336-->